home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / QuakeTools / src / libqdisplay / surface.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-09  |  252 b   |  14 lines

  1. #ifndef SURFACES_H
  2. #define SURFACES_H
  3. #include "poly.h"
  4. #include "render.h"
  5.  
  6. #define ABS(a) ((a) >= 0 ? (a) : -(a))
  7.  
  8. short int lightstyleStrings[16][64];
  9. int lightstyleLengths[11];
  10.  
  11. void GetTMap(__memBase, struct texture *Text, short int mip);
  12.  
  13. #endif
  14.